From: Eli Zaretskii Date: Thu, 28 Mar 2024 09:34:25 +0000 (+0200) Subject: ; * lisp/emacs-lisp/pcase.el (pcase--subtype-bitsets): Doc fix. X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~14^2~18^2~2128 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=35ae2c576b8570da7b2e791991ad852c648be896;p=emacs.git ; * lisp/emacs-lisp/pcase.el (pcase--subtype-bitsets): Doc fix. --- diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el index e2d0c0dc068..23f1bac600c 100644 --- a/lisp/emacs-lisp/pcase.el +++ b/lisp/emacs-lisp/pcase.el @@ -688,8 +688,9 @@ recording whether the var has been referenced by earlier parts of the match." ;; start compiling code, and hence baking the result into files). (with-eval-after-load 'cl-preloaded (defconst pcase--subtype-bitsets (pcase--subtype-bitsets))))) - "Table mapping predicates to their set of types. -These are the set of built-in types for which they may return non-nil. + "Hash table mapping type predicates to their sets of types. +The table maps each type predicate, such as `numberp' and `stringp', +to the set of built-in types for which the predicate may return non-nil. The sets are represented as bitsets (integers) where each bit represents a specific leaf type. Which bit represents which type is unspecified.")